for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
$(document).ready(function () {
new Clipboard('.copy-link');
Clipboard
/** global: Clipboard */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
new Clipboard(".copy-link")
$('.alt-tooltip').tooltip();
$('.delete-poll').click(function(){
deletePoll(this);
deletePoll
});
/* $('.copy-link').click(function(){
copyToClipboard(this);
*/
$('.table-body .avatardiv').each(function(i, obj) {
$(obj).avatar(obj.title, 32);
$('.popupmenu').each(function() {
OC.registerMenu($('#expand_' + $(this).attr('value')), $('#expanddiv_' + $(this).attr('value')) );
$('.copy_link').click(function() {
window.prompt(t('polls','Copy to clipboard: Ctrl+C, Enter'), $(this).data('url'));
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.